home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / editor / 4ledit.zip / 40LVEDIT.DOC < prev    next >
Text File  |  1992-06-07  |  46KB  |  1,018 lines

  1. 40-LOVE TEXT EDITOR
  2.  
  3. 40-LOVE editor provides you with two new features:
  4.  
  5. 1.    You can restore your text file to any of its previous versions.
  6. 2.    You can highlight the changes.
  7.  
  8.  
  9. Besides these two major functions, there are other new facilities
  10. that you might find useful. These are the possibilities:
  11. *    Display which changes have been made before saving to disk
  12. *    Move the cursor to the location of the changes
  13. *    An automatic search for any previous version that cantains
  14.     the search text
  15. *    A better backup system. Plain editors use the older file as
  16.     backup, while this backup file does not contain the latest
  17.     update. 40-LOVE enables you to completely reconstruct your
  18.     file from the backup file
  19. *    Search into deleted text
  20. *    Display the size of changes in terms of the number of
  21.     inserted and deleted characters
  22. *    Saving the changes to a temporary file without changing the
  23.     text files
  24.  
  25.  
  26. The following common features are included:
  27. -    multiple files
  28. -    mouse support
  29. -    movable, adjustable windows
  30. -    on-line, context-sensitive Help facility
  31. -    pull-down menus
  32. -    block commands (cut, copy, append, paste, delete)
  33. -    clipboard
  34. -    search forward, backward, toggle case sensitivity
  35. -    search and replace
  36. -    un-delete
  37. -    DOS shell
  38. -    command-line file load using wildcards
  39. -    pair matching
  40. -    ASCII chart
  41. -    user configurable keyboard (ready-made keys for BRIEF, QEDIT,
  42.     PROGRAM EDITOR, ZORTECH EDITOR). default to Borland C++
  43. -    configuration-sensitive command reference
  44.  
  45. You can work with 40-LOVE in the same way as any plain editor. When
  46. you save the file, you are prompted to select one of the save options.
  47. You have the possibility to save the file in the same way as other
  48. editors do.
  49.  
  50.  
  51. Hardware and Software Requirements
  52. ________________________________________________________________________
  53.  
  54. 40-LOVE runs on the IBM PC family of computers, including the XT, AT,
  55. and PS/2, along with all true IBM compatibles. 40-LOVE requires DOS 2.0
  56. or higher, a floppy drive or a hard disk, an 80-column monitor.
  57.  
  58.  
  59. Installing 40-LOVE
  60. ________________________________________________________________________
  61.  
  62. If you want to save disk space, just copy the 4.EXE file. 
  63. You will still be able to use all functions except on-line help, 
  64. Quick (command) Reference, and reconfigured keys.
  65.  
  66. We assume you are already familiar with DOS commands. Make a directory
  67. on your hard disk, for instance,
  68.  
  69.     MD C:\40LV
  70.  
  71. Copy 4.EXE and 40LOVE.HLP to the directory. The other files are not
  72. neccessary. You may want to add the path C:\40LV to your AUTOEXEC.BAT.
  73.  
  74.  
  75. Reconfigure keyboard
  76. ________________________________________________________________________
  77.  
  78. The KEYBCONF.EXE file in the KEYS directory lets you assign new key
  79. sequences to the commands. Copy your keyboard configuration file to
  80. the file MINEKEY.4LV in the directory in which 4.EXE resides. For
  81. instance,
  82.  
  83.     COPY A:\KEYS\BRIEF.4LV C:\40LV\MINEKEY.4LV
  84.  
  85. If the editor cannot find MINEKEY.4LV, default keys are used.
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92. The operation is similar to the editors supplied with Turbo C, Turbo 
  93. Pascal and Borland C++.
  94.  
  95.  
  96. Four Frequently Used Keys:
  97. ________________________________________________________________________
  98.  
  99. F10    Pop up the menus. Use <-, -> or 1...6 to select one of the
  100.     menus. Use the Up, Down, Page Up and Page Down keys to select
  101.     a menu item. Press Enter to confirm the choice, ESC to cancel.
  102.     Use the letters A, B, .. to select and execute the command.
  103.  
  104. F1    Help.
  105.  
  106. ESC    Cancel. When you are in a browser window, use the ESC key to
  107.     quit and close the browser window.
  108.  
  109. Enter    Confirm.
  110.  
  111.  
  112. The 40-LOVE backup file
  113. ________________________________________________________________________
  114.  
  115. You may wonder how much disk space it takes to save all the changes in
  116. your files. It does not take much more space than common editors. In
  117. those editors, even if you just delete one word from the file, they
  118. will save your new file, and the old file with just one more word than
  119. the new file. In 40-LOVE, we save the deleted word instead, together
  120. with the location. This is also the reason that we can let you step
  121. back into the history of the file.
  122.  
  123. Definitions:
  124. text file       - the file you edited
  125. edition file    - the file containing the changes. You can reproduce
  126.                   the text file from the edition file.
  127.  
  128. The location of the edition file - The edition file is always saved in
  129. a subdirectory named 40LVBK; the edition file has the same name as the
  130. text file. The subdirectory is located in the directory of your text
  131. file.
  132.  
  133. If you have edited file C:\MYPROG\T.1 , then the edition file is 
  134. C:\MYPROG\40LVBK\T.1 . In this way you can always have a backup file,
  135. as long as the length of the path does not exceed the limit defined by
  136. DOS. In the conventional backup system with the .BAK extension, when
  137. you are editing files T.1 and T.2 , they share the backup file T.BAK.
  138. Thus there is a 50% chance your files are not being backed up.
  139.  
  140. The access to the edition file is completely automatic. This means to
  141. say, after you have opened the text file the editor knows how and
  142. where to create or find the edition file.
  143.  
  144. The text file and its edition file form a pair. Each time the edition
  145. file is accessed, the editor checks whether the time-date stamp of the
  146. text file matches the record in the edition file. If you have saved
  147. the text file without updating the edition file, they are no longer
  148. matched. Next time you want to save the edition file, the editor will
  149. prompt you to overwrite the present edition file in order to start
  150. saving the editions again.
  151.  
  152.  
  153. Invoking the Editor
  154. ________________________________________________________________________
  155.  
  156. At DOS command line, type 4, then Enter to start the editor.
  157.  
  158.  
  159. Invoking 40-LOVE with a File Name
  160. ________________________________________________________________________
  161.  
  162. You can specify the name of the file you want to edit when you invoke
  163. 40-LOVE. For example, 
  164.  
  165. 4 MYFILE
  166.  
  167. starts the editor and loads MYFILE.
  168.  
  169. Invoking the editor with 4 *.C will load all files with the extension
  170. .C into the editor.
  171.  
  172.  
  173. Saving and Loading Your File
  174. ________________________________________________________________________
  175.  
  176. To load a file you can either press F3 while inside the editor or
  177. select the Open\New option in the File menu. You are then prompted for
  178. the name of the file you wish to load. There are two ways to specify
  179. the file name.
  180.  
  181.     1. If you know the name, you can type it in.
  182.     2. You can use wildcards to get a list of the files, from which
  183.     you can choose one. Use the arrow keys to highlight the file
  184.     you want and then press ENTER.
  185.  
  186.  
  187. To save the current file, you can either press F2 while inside the editor
  188. or select the Save option in the File menu. If the file has been changed,
  189. you will be prompted to choose from the different save options:
  190.  
  191. 1    Pressing 1 lets you combine the changes with
  192.     the previous changes if they are made on
  193.     the same date. The editor checks the date of
  194.     the very last version. If this date is
  195.     different from the present date, the changes
  196.     are just saved to disk; otherwise the changes
  197.     are merged. In such a way you can automatically
  198.     keep only one version for one day, even when
  199.     you have changed the same file several times.
  200.  
  201. 2    This option lets you save the changes without 
  202.     checking the date and without merging the
  203.     versions. Remember however, if you want to
  204.     keep this version without merging, the next
  205.     time you save the file, you also have to
  206.     choose SAVE; or else they will be merged if
  207.     they share the same date.
  208.  
  209. 3    This option lets you save the file without
  210.     saving the versions. In this option, the
  211.     editor functions just like all conventional
  212.     editors. Furthermore, a backup file is saved
  213.     with the extension of .BAK.
  214.  
  215.     If your file has always been saved with
  216.     version, then saving the file now without
  217.     saving the version will end the edition data.
  218.     In such a case, you will be asked to confirm
  219.     the "TEXT save" option. This step can prevent
  220.     you from pressing the wrong save button
  221.     accidentally. If the file was previously also
  222.     saved without saving the version, then no
  223.     confirmation is asked.
  224.  
  225. 4    The text file and the edition data will not
  226.     be written to disk.
  227.  
  228. 5    The changes made to the file are displayed
  229.     in a browser window. Press ESC to quit the
  230.     display.
  231.  
  232. ESC    Is equal to No save. However, there is one 
  233.     difference when you close a file or quit the
  234.     editor. During those commands, ESC will let
  235.     you go back into the normal Edit mode,
  236.     whereas NO save clears the file in memory.
  237.  
  238. When you quit the editor, these save options will be displayed for the
  239. files that have been changed.
  240.  
  241.  
  242. Deleting Characters, Words, and Lines
  243. ________________________________________________________________________
  244.  
  245. You can delete a single character in two ways: with the BACKSPACE key
  246. or with the DEL key.
  247.  
  248. You can delete from the current cursor position to the beginning of
  249. the next word by typing Ctrl-t.
  250.  
  251. You can remove an entire line by typing Ctrl-y. It does not matter
  252. where the cursor is positioned; the entire line is deleted.
  253.  
  254. If you wish to delete from the cursor position to the end of the line,
  255. type Ctrl-q y.
  256.  
  257.  
  258. More on Cursor Movement
  259. ________________________________________________________________________
  260.  
  261. Besides the arrow keys, the editor has special cursor commands.
  262.  
  263. Command             Action
  264. Ctrl-Right          Start of previous word
  265. Ctrl-Left           Start of next word
  266. Ctrl-w              Scroll up
  267. Ctrl-z              Scroll down
  268. PGUP                Previous page
  269. PGDN                Next page
  270. HOME                Start of the line
  271. END                 End of the line
  272. Ctrl-PGUP           Start of the file
  273. Ctrl-PGDN           End of the file
  274. Ctrl-q [            Pair Matching
  275.  
  276.  
  277. Moving, Copying, and Deleting Blocks of Text
  278. ________________________________________________________________________
  279.  
  280. To define a block, move the cursor to the Block Begin or End position.
  281. Type Ctrl-k b to define the beginning of the block, Ctrl-k k for the 
  282. end of the block. The block that you have defined will be highlighted
  283. (or in a different color if you have a color system).
  284.  
  285. To move the block, place the cursor on the position you want the text
  286. to go and type Ctrl-k v. This removes the block from its original
  287. position and places it at the new location.
  288.  
  289. To copy a block, type Ctrl-k c. To delete the currently marked block,
  290. type Ctrl-k y.
  291.  
  292.  
  293. Moving Blocks of Text to and from Disk Files
  294. ________________________________________________________________________
  295.  
  296. It is possible to move a block of text into a disk file for later use.
  297. This is done by first defining a block and then typing Ctrl-k w. After
  298. you have done this, you are prompted for the name of the file in which
  299. you wish to save the block. The original block of text is not removed
  300. from your file.
  301.  
  302. To read a file in, type Ctrl-k r. You are prompted for the file name,
  303. and the contents of that file are read in at the current cursor
  304. location.
  305.  
  306.  
  307. Clipboard
  308. ________________________________________________________________________
  309.  
  310. You can move blocks of text between two or more files using the
  311. Clipboard. The Clipbaord commands can be issued through the Edit menu.
  312.  
  313.  
  314. Find and Find with Replace
  315. ________________________________________________________________________
  316.  
  317. To find a specific sequence of characters, type Ctrl-q f. You will be
  318. prompted for the string of characters you wish to find.
  319.  
  320. You can repeat a search by typing Ctrl-l.
  321.  
  322. Type Ctrl-q a to activate the Replace Forward command. Its operation is
  323. identical to the Find Forward command except that it allows you to
  324. replace the string you are looking for with another.
  325.  
  326.  
  327. Review, Reconstruct
  328. ________________________________________________________________________
  329.  
  330. You can highlight the changes which have been made in your current
  331. editing window, or in the version window when you are reviewing an
  332. earlier version of your text. Type Ctrl-v to switch the Highlight
  333. Change Mode On/Off. On a monochrome display, the inserted text will
  334. be shown with the high-intensity and underline attribute; the deleted
  335. text will be in the reversed mode.
  336.  
  337. To review an older version of your text file, select the Restore
  338. Version option in the Review menu. A list of the previous versions
  339. will be displayed. You can select one by moving the Up and Down arrow
  340. keys, and press Enter.
  341.  
  342. To reconstruct your file or part of the file, you can use the block
  343. commands to write a block to disk (Ctrl-k w) or to the Clipboard.
  344.  
  345. To see the changes, without displying the text that has not been
  346. modified, you can select the Show Changes option in the Review menu.
  347.  
  348. For each file you can open a normal edit window, and a review version
  349. window. Changes on the text can not be made in the version window.
  350. The version window is always titled "Vs # ....", so it can easily
  351. be distinguished from the edit window. If a review version window is
  352. opened, you can see the message "Version On" on the bottom line of your
  353. display. To move between the edit window and the review version window,
  354. select the Switch Edit\Version option in the Review menu. If the
  355. "Version On" message is displayed, then one of the previous versions
  356. of the file is in memory. To close the version window, switch to this
  357. window(if you are not already in it), then type Alt-F3.
  358.  
  359.  
  360. Exit
  361. ________________________________________________________________________
  362.  
  363. Use F10 to activate the menu while inside the editor. Select the Quit
  364. option in the File menu. You will be prompted to save the files if they
  365. have been changed.
  366.  
  367.  
  368. Context-Sensitive Help
  369. ________________________________________________________________________
  370.  
  371. To access context-sensitive help, you activate the menu and highlight
  372. the menu option you are interested in. After the Help hotkey is pressed,
  373. information relating to the highlighted option is displayed. You can
  374. press ESC to quit.
  375.  
  376.  
  377.  
  378.  
  379.  
  380. 1-File menu.
  381. ________________________________________________________________________
  382.  
  383. This menu lets you open and create files, save your changes, shell to DOS,
  384. and quit.
  385.  
  386. A Open\New   F3         --- Opens an existing file or creates a new
  387.                         file. A dialog line is displayed into which 
  388.                         you can type the name of the file. If you
  389.                         enter a file name that the editor can't find,
  390.                         it automatically opens a new file with that
  391.                         name. This new file exists only in the editor
  392.                         until you save it to disk.
  393.  
  394.                         You can use standard DOS wildcards (* and ?)
  395.                         to let the editor display the files in the
  396.                         directory. Use the cursor movement keys    to
  397.                         highlight one of the names. Press Enter to
  398.                         select the file, press ESC to quit.
  399.  
  400.                         This command also lets you view the contents
  401.                         of different directories by either typing the
  402.                         name of the directory or selecting the
  403.                         highlighted directory.
  404.  
  405.  
  406. B Save       F2         --- This command saves the file to disk. If
  407.                         you have not made any changes to the file, no
  408.                         action is taken. Otherwise, it displays a
  409.                         dialog box showing the file name and a message
  410.                         that the file contents have been changed. It
  411.                         also displays the number of inserts and deletes.
  412.                         The actions that can be taken are displayed.
  413.  
  414.                         There are different ways to save your file: 
  415.                         a - save the file and keep the original file
  416.                             with the extension .BAK. 
  417.                         b - save the file and save which changes
  418.                             have been made (no conventional backup file
  419.                             will be saved).
  420.  
  421.                         1 Pressing 1 lets you combine the changes with
  422.                         the previous changes if they are made on the
  423.                         same date. The editor checks the date of the
  424.                         very last version. If this date is different
  425.                         from the present date, the changes are just
  426.                         saved to disk; otherwise the changes are merged.
  427.                         In such a way you can automatically keep only
  428.                         one version for one day, even when you have
  429.                         changed the same file several times.
  430.  
  431.                         2 This option lets you save the changes without
  432.                         checking the date and without merging the
  433.                         versions. Remember however, if you want to keep
  434.                         this version without merging, the next time you
  435.                         save the file, you also have to choose SAVE; or
  436.                         else they will be merged if they share the same
  437.                         date.
  438.  
  439.                         3 This option lets you save the file without
  440.                         saving the versions. In this option, the editor
  441.                         functions just like all conventional editors.
  442.                         Furthermore, a backup file is saved with the
  443.                         extension of .BAK.
  444.  
  445.                         If your file has always been saved with
  446.                         version, then saving the file now without
  447.                         saving the version will end the edition data.
  448.                         In such a case, you will be asked to confirm
  449.                         the "TEXT save" option. This step can prevent
  450.                         you from pressing the wrong save button
  451.                         accidentally. If the file was previously also
  452.                         saved without saving the version, then no
  453.                         confirmation is asked.
  454.  
  455.                         4 The text file and the edition data will not
  456.                         be written to disk.
  457.  
  458.                         5 The changes made to the file are displayed
  459.                         in a browser window. Press ESC to quit the
  460.                         display.
  461.  
  462.                         ESC is equal to No save. However, there is one
  463.                         difference when you close a file or quit the
  464.                         editor. During those commands, ESC will let you 
  465.                         go back into the normal Edit mode, whereas NO
  466.                         save clears the file in memory.
  467.  
  468. C Save All              ---  Performs SAVE for every file that has
  469.                         been changed.
  470.  
  471. D Save To Temp.         --- Saves the changes of all opened files
  472.                         into one temporary file without actually
  473.                         modifying your files and edition files (See
  474.                         "Restart" on how to recover these changes).
  475.                         This can be useful when you are not sure
  476.                         yet whether the changes should be saved
  477.                         permanently.
  478.  
  479. E Save As..             --- This lets you save the file in the 
  480.                         active edit window under a different name,
  481.                         in a different directory, or on a different
  482.                         drive. You will be asked to enter the new
  483.                         name. If the new name is an existing file in
  484.                         the disk, a warning is issued and you will
  485.                         be required to confirm overwriting the file.
  486.  
  487. F Restart               --- When you leave the editor by using the Quit
  488.                         command, the editor keeps a record of which
  489.                         files are currently opened and at which
  490.                         location the cursor is positioned for each
  491.                         file. When you start the editor again, you can
  492.                         use this record to automatically open the same
  493.                         files and bring the cursor to its former
  494.                         locations, so that you will be in exactly the
  495.                         same situation as when you quit the editor
  496.                         (The version windows will not be reopened).
  497.                         The Restart command will only work when you
  498.                         have no files which are open.
  499.  
  500.                         This command also loads in any changes you have
  501.                         made and saved temporarily but not permanently.
  502.  
  503.                         The disk file that contains the Restart data,
  504.                         which is given the name 40LVDSK.TMP, is saved
  505.                         in your current working directory. The Restart
  506.                         command will look for this file only in your
  507.                         current working directory, with the result that
  508.                         you can have a different Restart for different
  509.                         directories.
  510.  
  511.                         There are three commands that will cause the
  512.                         editor to save and thus overwrite the Restart
  513.                         record: Save To Temp., DOS Shell, and Quit.
  514.                         The Quit command only saves the reference to
  515.                         the open files and the cursor positions,
  516.                         whereas the other two commands also keep a
  517.                         record of which changes have been made.
  518.  
  519. G DOS Shell             --- Saves a record of the references to the 
  520.                         open files and the cursor locations, also saves
  521.                         any modifications in the files to 40LVDSK.TMP;
  522.                         it clears the memory that is occupied by these
  523.                         files; it activates the DOS operating system.
  524.                         Type EXIT to return to the editor, which will
  525.                         execute the Restart command to reconstruct the
  526.                         context as it was, before going to DOS.
  527.  
  528. H DOS Command           --- Prompts you for a DOS command. You may not
  529.                         install any TSR programs. You can delete files,
  530.                         change directory ect.
  531.  
  532. I Quit                  --- Saves a record of the references to the 
  533.                         open files and the cursor locations. If you
  534.                         have made any changes that you haven't saved,
  535.                         the editor asks you if you want to save them 
  536.                         before exiting. If ESC is pressed during the
  537.                         save, the Quit command is aborted and you are
  538.                         back in the editor.
  539.  
  540.  
  541.  
  542. 2-Edit menu
  543. ________________________________________________________________________
  544.  
  545.  
  546. A Un-delete             --- Inserts the characters that have been
  547.                         deleted. You can only Un-delete characters
  548.                         that already exist in the file. In other words,
  549.                         characters that are just typed in without 
  550.                         being saved, cannot be un-deleted.
  551.  
  552.                         Un-delete works only when the cursor is at the
  553.                         deleted text. You can review what can be
  554.                         un-deleted by turning on the Highlight Change
  555.                         Mode. Move the cursor inside the deleted text,
  556.                         call Un-delete to restore the text. Un-delete
  557.                         also works when Highlight Change Mode is off.
  558.  
  559. B Show Clipboard        --- This shows you what is in the Clipboard.
  560.                         Press ESC to quit.
  561.  
  562. C Cut Block to Clipb.   --- Appends the contents of the block to the
  563.                         end of the Clipboard, and then deletes the
  564.                         block.
  565.  
  566. D Copy Block to Clipb.  --- Clears the Clipboard, then copies the block
  567.                         to the Clipboard.
  568.  
  569. E Append Block to Clipb.--- The contents of the block are appended to
  570.                         the end of the Clipboard.
  571.  
  572. F Paste Clipb.          --- Inserts the text from the Clipboard into
  573.                         the current file at the current cursor position.
  574.  
  575. G Copy Deleted to Clipb.--- The deleted text which you can see in the
  576.                         Highlight Changes Mode, can be copied to the
  577.                         Clipboard. To select the text, move the cursor
  578.                         inside the deleted text. Not only the deleted
  579.                         text at the edit window, but also the deleted
  580.                         text at the version window can be copied. In
  581.                         this way you can recover texts which were
  582.                         deleted at an earlier stage. Before the copy
  583.                         action, the Clipboard is cleared.
  584.  
  585. H Append Deleted to Cl. --- Similar to Copy Deleted .. But now the
  586.                         Clipboard is not cleared, instead the text is
  587.                         appended to the end of the Clipboard.
  588.  
  589. I Block Begin           --- The beginning position of the Block is set 
  590.                         to the current cursor position. When you open
  591.                         a file, Beginning of Block and End of Block 
  592.                         are both set to the first position of the file.
  593.                         The Block is maintained if End of Block is 
  594.                         behind Beginning of Block.
  595.  
  596. J Block End             --- The end position of the Block is set to the
  597.                         current cursor position. When you open a file,
  598.                         Beginning of Block and End of Block are both set
  599.                         to the first position of the file. The Block is
  600.                         maintained if End of Block is behind Beginning 
  601.                         of Block.
  602.  
  603. K Block Delete          --- The text inside the Block is deleted.
  604.  
  605. L Block Copy            --- The text Block is copied to the current
  606.                         cursor position.
  607.  
  608. M Block Move            --- The text Block is moved to the current
  609.                         cursor position.
  610.  
  611. N Write Block           --- The text Block is saved to a disk file.
  612.                         You will be prompted for the file name. If the
  613.                         name already exists, you will be asked to
  614.                         confirm the overwriting of the existing file.
  615.  
  616. O Insert File           --- This command lets you insert the contents
  617.                         of a text file into the current open file, at
  618.                         the cursor position.
  619.  
  620.  
  621.  
  622. 3-Search menu
  623. ________________________________________________________________________
  624.  
  625. The commands in this menu let you search for text, go to a specific line,
  626. or find the changes. Not only can you search in the text file, but the
  627. deleted text that no longer exists in the text file (which can be seen
  628. in the Highlight Changes Mode), will also be searched, if you turn on
  629. the Highlight Mode.
  630.  
  631.  
  632. A Find Forward          --- Displays the search dialog line, which lets
  633.                         you type in the text you want to search for.
  634.                         Press ESC to cancel the search, press Enter to
  635.                         carry it out. If the text is found, the cursor
  636.                         is moved to just behind the text which is
  637.                         displayed with reversed video.
  638.  
  639.                         The search starts from the current cursor
  640.                         position towards the end of the file.
  641.  
  642.                         If it is not found, the "Text not found" message
  643.                         is displayed and after pressing any key the
  644.                         cursor will return to its original position.
  645.  
  646. B Replace Forward       --- Displays the search dialog line, which lets
  647.                         you type in the text that you want to search for.
  648.                         When text input is completed, a second line asks
  649.                         you to type in the text with which you want to
  650.                         replace it. If the specified text is found, you
  651.                         will be asked whether you want to make the
  652.                         replacement. If you choose "y", the text will be
  653.                         replaced. If you choose "a", all text that can
  654.                         be found between the current cursor position to
  655.                         the file end, will be replaced.
  656.  
  657.                         The Replace command does not work when the
  658.                         Highlight Changes Mode is on.
  659.  
  660. C Find Backward         --- Displays the search dialog line, which lets
  661.                         you type in the text you want to search for.
  662.                         Press ESC to cancel the search, press Enter to
  663.                         carry it out. If the text is found, the cursor
  664.                         is moved to just behind the text which is
  665.                         displayed with reversed video.
  666.  
  667.                         The search starts from the current cursor
  668.                         position towards the beginning of the file.
  669.  
  670.                         If it is not found, the "Text not found" message
  671.                         is displayed and after pressing any key the
  672.                         cursor will return to its original position.
  673.  
  674. D Replace Backward      --- Displays the search dialog line, which lets
  675.                         you type in the text you want to search for.
  676.                         When text input is completed, a second line
  677.                         asks you to type in the text with which you want
  678.                         to replace it. If the specified text is found,
  679.                         you will be asked whether you want to make
  680.                         the replacement. If you choose "y", the text
  681.                         will be replaced. If you choose "a", all text
  682.                         that can be found between the current cursor
  683.                         position to the beginning of the file, will be
  684.                         replaced.
  685.  
  686.                         The Replace command does not work when the
  687.                         Highlight Changes Mode is on.
  688.  
  689. E Case Sens. Toggle     --- Switches the case-sensitivity of the search
  690.                         On and Off.
  691.  
  692. F Again                 --- This command repeats your last Find or 
  693.                         Replace command.
  694.  
  695. G Go to Line            --- The command prompts you for the line number
  696.                         that you want to go to. If you enter a number
  697.                         larger than the actual number of lines in the
  698.                         file, the editor moves the cursor to the last
  699.                         line.
  700.  
  701. H Next Change           --- This command moves the cursor to the change
  702.                         that is behind your current cursor position. It
  703.                         will switch the Highlight Changes Mode on.
  704.  
  705. I Prev. Change          --- This command moves the cursor to the change
  706.                         that is above your current cursor position. It
  707.                         will switch the Highlight Changes Mode on.
  708.  
  709. J Pair Match            --- This lets you find the companion delimiter
  710.                         for the following delimiter pair: {} [] () <> .
  711.                         You have to place the cursor on the delimiter
  712.                         you wish to match.
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719. 4-Review menu
  720. ________________________________________________________________________
  721.  
  722. Most of the features, that you can not find in conventional editors but
  723. only in this editor, are located in this Review menu.
  724.  
  725. The philosophy is, that instead of keeping the file before modification
  726. as the backup file, we save the specific changes you have made to the
  727. text file. The major advantages are:
  728.  
  729. *    You can review what your file looked like on previous dates,
  730. yesterday, the day before yesterday, and so on. You can restore any
  731. previous version of your file.
  732.  
  733. *    You can also see exactly what modifications were made at a 
  734. specific version. You can highlight the changes, you even can display
  735. only the changes.
  736.  
  737. *    Text which has been deleted, can be copied to the Clipboard
  738. and can be used again.
  739.  
  740.  
  741. A Highlight Change      --- Highlights the modifications made on the
  742.                         file, so that you can see clearly what has
  743.                         been changed. On a monochrome display, the
  744.                         inserted text is displayed in High Intensity
  745.                         with Underline mode, and the deleted text is
  746.                         in Reversed mode.
  747.  
  748.                         The new line character is shown as «.
  749.  
  750.                         Use the command to switch the Highlight Changes
  751.                         Mode ON and OFF. If it is ON, no edit operation
  752.                         is possible except Un-delete; the bottom line
  753.                         of your monitor will display the message
  754.                         "HiL Mode". If you perform a text search in
  755.                         "HiL Mode", deleted text will also be searched.
  756.  
  757.                         The Highlight Change command can be executed
  758.                         in both the edit window and the version window.
  759.  
  760. B Restore Version       --- This command lets you review the history of
  761.                         the file. You can choose one of the versions,
  762.                         browse through the text, highlight the changes,
  763.                         copy a part of or the whole file to the 
  764.                         Clipboard or disk.
  765.  
  766.                         A list of the versions will be displayed.
  767.                         From left to right on each line, it shows the
  768.                         number of the version, the number of inserts,
  769.                         the total number of inserted characters, the
  770.                         number of deletes, the total number of
  771.                         deleted characters, and, the date and the time
  772.                         when the version was saved. Use the Up and
  773.                         Down arrow keys, Page Up and Page Down keys to
  774.                         move the selection bar to the version you are
  775.                         interested in. Press Enter to select. The text
  776.                         of the selected version is then restored and
  777.                         displayed in the version window. You can use
  778.                         the normal cursor movement commands to browse
  779.                         through the text. You can not make any changes
  780.                         on the text. You can define a block and copy
  781.                         it to the Clipboard or to a disk file. To
  782.                         restore the whole text, move Block begin to
  783.                         the begining of the text, Block end to the end
  784.                         of the file; then write the block to the
  785.                         Clipboard or to a disk file.
  786.  
  787.                         Use the Highlight Change command to review
  788.                         which changes were made during the edit
  789.                         operation. The deleted text can be copied to
  790.                         the Clipboard.
  791.  
  792.                         Use the Restore Version command again if you
  793.                         want to go to another version. You can review
  794.                         any version that you can select from the
  795.                         version list.
  796.  
  797.                         You can open the version window of each open
  798.                         file. You can move between the normal edit
  799.                         window and the version window. When the version
  800.                         window is open, the text is in the memory of
  801.                         your computer. You can close the version window
  802.                         with the Close command (if the current window
  803.                         is the version window). Closing the file
  804.                         automatically closes its version window, if it
  805.                         is already open. At the bottomline of your
  806.                         monitor, the message "Version On" will be 
  807.                         shown, if the version window is open.
  808.  
  809. C Show Changes          --- This command displays only the changes.
  810.                         You can use the cursor movement commands to
  811.                         browse through it. Press ESC to quit. The
  812.                         window will then be cleared.
  813.  
  814. D Switch Edit\Version   --- This command lets you move between the
  815.                         edit window which enables you to modify the
  816.                         text, and the version window which lets you
  817.                         review and recover previous versions of the
  818.                         text. When you switch from the version window
  819.                         to the edit window, the version window will
  820.                         not be closed. This is shown by the message
  821.                         "Version On" on the bottom line of the monitor.
  822.                         When you switch from the edit window to the
  823.                         version window, while the version window is
  824.                         not yet open, the Restore Version command is
  825.                         automatically carried out first.
  826.  
  827. E Load Editionfile      --- When you save a version of a file, the
  828.                         editor saves the file, and, updates the edition
  829.                         file in which the changes are stored. In normal
  830.                         circumstances, you do not have to pay any
  831.                         attention to the edition file; you just use the
  832.                         Restore Version, Switch Edit\Version, MERGE or
  833.                         SAVE version commands, and the editor
  834.                         automatically accesses the edition file.
  835.  
  836.                         However, there could be situations in which you
  837.                         might want direct access to the edition file.
  838.                         You can not load the file using the Open\New
  839.                         command. The Load Editionfile command lets
  840.                         you correctly read the data saved in the 
  841.                         edition file, review and/or reconstuct the text.
  842.  
  843.                         The edition file contains all data about the
  844.                         text file. If your text file is deleted
  845.                         accidentally, you can restore it completely
  846.                         with the edition file. After you have loaded
  847.                         the edition file, you can use the Restore
  848.                         Version command to review any versions of the
  849.                         file.
  850.  
  851. F Find to..             --- This command automatically calls the
  852.                         Restore Version command, then searches for the
  853.                         specified text. This process is repeated until
  854.                         the text is found. The command only works in
  855.                         one direction -- you are searching in an
  856.                         earlier version. For instance, you start at the
  857.                         version of yesterday, which is Vs #101. In this
  858.                         case Vs #101 is not searched (if you want to
  859.                         search that version, use the 2-Search menu
  860.                         commands), but a Restore Version of Vs #100 is
  861.                         performed. If the text is found in Vs #100, the
  862.                         Find to.. command is completed; otherwise Vs #99
  863.                         is reconstructed and searched. If the text does
  864.                         not exist in any versions, the search will stop
  865.                         at Vs #0.
  866.  
  867.  
  868. 5-Window menu
  869. ________________________________________________________________________
  870.  
  871.  
  872. A Size\Move             --- This command lets you decrease the size
  873.                         of the current edit window by pressing Page Up
  874.                         or Home. Use Page Down or End to enlarge the
  875.                         window. The window moves in response to the
  876.                         arrow keys. When the window is where you want
  877.                         it, press Enter. ESC lets you cancel the
  878.                         Size\Move command, so the window will not be
  879.                         relocated. This command can only be used on
  880.                         edit windows. The version window can not be
  881.                         changed.
  882.  
  883. B Zoom                  --- This command lets you enlarge the current
  884.                         edit window to the maximum size, which is 
  885.                         80 x 24. Moreover, no window border and window
  886.                         title is displayed. The bottom line is reserved
  887.                         to display the file name, window, and cursor
  888.                         information. This command can only be used on
  889.                         edit windows; the version window can not be
  890.                         changed.
  891.  
  892. C Next                  --- This command allows you to select the next
  893.                         file as the current one. You can not use this
  894.                         command to move between an edit window and its
  895.                         version window of a file; you have to use the
  896.                         Switch Edit\Version command in the 4-Review
  897.                         menu.
  898.  
  899. D Close                 --- This command lets you close the current
  900.                         window. If you are inside the edit window, the
  901.                         command will also close the file, and the
  902.                         version window if it is open.
  903.  
  904.  
  905.  
  906. 6-Misc menu
  907. ________________________________________________________________________
  908.  
  909.  
  910. A ASCII Chart           --- Displays a table of PC characters.
  911.  
  912. B Insert Value          --- This command lets you insert a character
  913.                         by typing its corresponding decimal value.
  914.                         0, 26 and 255 are not accepted.
  915.  
  916. C Tab Size              --- Sets the tab width.
  917.  
  918. D Quick Reference       --- Displays the editor commands and the
  919.                         corresponding key sequences. The Reference is
  920.                         configuration-sensitive; it is automatically
  921.                         updated according to your current key
  922.                         configuration.
  923.  
  924. E Help on keys..        --- This command lets you see the help text
  925.                         for the key sequence typed after calling
  926.                         this command.
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933. Quick Command Reference
  934. ________________________________________________________________________
  935.  
  936. Character left          │<Left>
  937. Character right         │<Right>
  938. Word left               │<Ctrl-Left>
  939. Word left               │<Ctrl-A>
  940. Word right              │<Ctrl-Right>
  941. Word right              │<Ctrl-F>
  942. Line up                 │<Up>
  943. Line up                 │<Ctrl-E>
  944. Line down               │<Down>
  945. Line down               │<Ctrl-X>
  946. Scroll up               │<Ctrl-W>
  947. Scroll down             │<Ctrl-Z>
  948. Page up                 │<PgUp>
  949. Page up                 │<Ctrl-R>
  950. Page down               │<PgDn>
  951. Page down               │<Ctrl-C>
  952. Beginning of line       │<Home>
  953. End of line             │<End>
  954. Top of window           │<Ctrl-Home>
  955. Top of window           │<Ctrl-Q><E>
  956. Bottom of window        │<Ctrl-End>
  957. Bottom of window        │<Ctrl-Q><X>
  958. Beginning of file       │<Ctrl-PgUp>
  959. Beginning of file       │<Ctrl-Q><R>
  960. End of file             │<Ctrl-PgDn>
  961. End of file             │<Ctrl-Q><C>
  962. Beginning of block      │<Ctrl-Q><B>
  963. End of block            │<Ctrl-Q><K>
  964. Delete word right       │<Ctrl-T>
  965. Delete line             │<Ctrl-Y>
  966. Delete to end of line   │<Ctrl-Q><Y>
  967. Mark block begin        │<Ctrl-K><B>
  968. Mark block end          │<Ctrl-K><K>
  969. Copy block              │<Ctrl-K><C>
  970. Move block              │<Ctrl-K><V>
  971. Delete block            │<Ctrl-K><Y>
  972. Insert file             │<Ctrl-K><R>
  973. Write to file           │<Ctrl-K><W>
  974. Copy to clipboard       │<Ctrl-B><C>
  975. Append to clipb.        │<Ctrl-B><A>
  976. Cut to clipboard        │<Ctrl-B><D>
  977. Paste clipboard         │<Ctrl-B><P>
  978. Copy deleted to clipb.  │
  979. Append deleted to clipb.│
  980. Show clipboard          │
  981. Un-delete               │<Ctrl-Q><L>
  982. Open file               │<F3>
  983. Save file               │<F2>
  984. Save all                │
  985. Save to temp.           │
  986. Save as..               │
  987. DOS shell               │
  988. DOS command             │
  989. Quit                    │<Alt-X>
  990. Find forward            │<Ctrl-Q><F>
  991. Replace forward         │<Ctrl-Q><A>
  992. Find backward           │
  993. Replace backward        │
  994. Case sens. toggle       │
  995. Again                   │<Ctrl-L>
  996. Go to line              │
  997. Next change             │
  998. Previous change         │
  999. Pair matching           │<Ctrl-Q><[>
  1000. HiL mode toggle         │<Ctrl-V>
  1001. Restore version         │
  1002. Show changes            │
  1003. Switch edit\version     │
  1004. Load editionfile        │
  1005. Find to ..              │
  1006. Window size\move        │
  1007. Window zoom             │<F5>
  1008. Next window             │<F6>
  1009. Close window            │<Alt-F3>
  1010. ASCII chart             │
  1011. Insert value            │<Ctrl-P>
  1012. Tab size                │
  1013. Access menus            │<F10>
  1014. Help                    │<F1>
  1015. Key-specific help       │
  1016. Typeover toggle         │<Insert>
  1017. Quick reference         │
  1018.